home *** CD-ROM | disk | FTP | other *** search
/ QuickTime VR Showcase / QuickTime VR Showcase.iso / 3rd Parties / Software / Apple / AMT 2.1 New Features Demo / SOURCES / oQuickTime_2_7.k < prev    next >
Encoding:
Text File  |  1996-12-21  |  14.6 KB  |  698 lines  |  [TEXT/MPS ]

  1. object oQuickTime_2_7 is cDefaultContainer
  2. with
  3.     Binder is oBinder;
  4.     Label is -1;
  5.     Items is [
  6.         oKeyboard_Volume__7_40,
  7.         oQT_BCK2_PIC_7_15,
  8.         oClick_Sound__Up__7_2,
  9.         oClick_Sound__down__7_3,
  10.         oArrow_Right_Yellow_Highligh_7_4,
  11.         oArrow_Left_Yellow_Highlight_7_5,
  12.         oExit_Yellow_Highlight_7_6,
  13.         oExplain_Yellow_Highlight_7_34,
  14.         oMenu_Yellow_Highlight_7_8,
  15.         oArrow_Left_Inverse_7_9,
  16.         oArrow_Right_Inverse_7_10,
  17.         oExit_Inverse_7_11,
  18.         oExplain_Inverse_7_12,
  19.         oMenu_Inverse_7_13,
  20.         oQT_ARW1_PIC_7_23,
  21.         oQT_ARW2_PIC_7_24,
  22.         oQT_ARW3_PIC_7_25,
  23.         oQT_ARW4_PIC_7_26,
  24.         oQT_MOTO_MOV_7_27,
  25.         oQT_HLP2_PIC_7_35
  26.     ];
  27. end;
  28.  
  29.  
  30. object oKeyboard_Volume__7_40 is cKeyboardHandler
  31. with
  32.     Behavior is cDefaultBehavior
  33.     has
  34.         KeyDown(theTarget, theKey)
  35.         use
  36.             KeyMatch;
  37.             
  38.             do
  39.                 KeyMatch := theKey = '-';
  40.                 if KeyMatch then
  41.                     theTarget.DoDefaultMethod := false;
  42.                 
  43.                     oSoundVolume.StepIndexBy(-1);
  44.                 end;
  45.                 KeyMatch := theKey = '=';
  46.                 if KeyMatch then
  47.                     theTarget.DoDefaultMethod := false;
  48.                 
  49.                     oSoundVolume.StepIndexBy(1);
  50.                 end;
  51.                 KeyMatch := theKey = '+';
  52.                 if KeyMatch then
  53.                     theTarget.DoDefaultMethod := false;
  54.                 
  55.                     oSoundVolume.StepIndexBy(1);
  56.                 end;
  57.             end;
  58.         
  59.     with
  60.         Enabled is true; Shown is false; 
  61.         X is 30; Y is 24; Width is 0; Height is 0;
  62.     end;
  63. end;
  64.  
  65.  
  66. object oQT_BCK2_PIC_7_15 is cPictureHandler
  67. with
  68.     Duration is -1;
  69.     Supplier is oQT_BCK2_PIC;
  70.     Behavior is cDefaultBehavior
  71.     has
  72.     with
  73.         Enabled is false; Shown is true; 
  74.         X is 0; Y is 0; Width is 640; Height is 480;
  75.     end;
  76. end;
  77.  
  78.  
  79. object oClick_Sound__Up__7_2 is cSoundHandler
  80. with
  81.     Supplier is oS3_2clk_WAV;
  82.     Behavior is cDefaultBehavior
  83.     has
  84.     with
  85.         Enabled is true; Shown is true; 
  86.         X is 247; Y is 128; Width is 32; Height is 24;
  87.     end;
  88. end;
  89.  
  90.  
  91. object oClick_Sound__down__7_3 is cSoundHandler
  92. with
  93.     Supplier is oS3_clk_WAV;
  94.     Behavior is cDefaultBehavior
  95.     has
  96.     with
  97.         Enabled is true; Shown is true; 
  98.         X is 304; Y is 228; Width is 32; Height is 24;
  99.     end;
  100. end;
  101.  
  102.  
  103. object oArrow_Right_Yellow_Highligh_7_4 is cPictureHandler
  104. with
  105.     Duration is -1;
  106.     Supplier is oS2_ALYH_PIC;
  107.     Behavior is cDefaultBehavior
  108.     has
  109.         Offscreen(theTarget)
  110.             do
  111.                 theTarget.Show(false);
  112.             end;
  113.         
  114.         MouseEnter(theTarget, theX, theY)
  115.             do
  116.                 theTarget.Show(true);
  117.             end;
  118.         
  119.         MouseLeave(theTarget, theX, theY)
  120.             do
  121.                 theTarget.Show(false);
  122.             end;
  123.         
  124.         MouseDown(theTarget, theX, theY)
  125.             do
  126.                 theTarget.Show(false);
  127.                 oArrow_Right_Inverse_7_10.Show(true);
  128.                 -- Turn off the spining cursor, if there is one
  129.                 if oBinder.MouseSpin<>void then
  130.                     if oBinder.MouseSpin.IsRunning() then
  131.                         oBinder.MouseSpin.Stop();
  132.                     end;
  133.                     oBinder.MouseSpin := void;
  134.                 end;
  135.                 theTarget.Container.OverrideCursor := true;
  136.                 oBinder.MouseSpin := oHandSpin;
  137.                 if (oBinder.MouseSpin @ 1).Data=void then
  138.                     oBinder.MouseSpin.EachUp(Load);
  139.                 end;
  140.                 if not oBinder.MouseSpin.IsRunning() then
  141.                     oBinder.MouseSpin.Start();
  142.                 end;
  143.                 oBinder.Refresh();
  144.                 oClick_Sound__down__7_3.Run(true);
  145.             end;
  146.         
  147.         MouseUp(theTarget, theX, theY)
  148.             do
  149.                 theTarget.Show(true);
  150.                 oArrow_Right_Inverse_7_10.Show(false);
  151.                 oClick_Sound__Up__7_2.Run(true);
  152.                 -- Turn off the spining cursor, if there is one
  153.                 if oBinder.MouseSpin<>void then
  154.                     if oBinder.MouseSpin.IsRunning() then
  155.                         oBinder.MouseSpin.Stop();
  156.                     end;
  157.                     oBinder.MouseSpin := void;
  158.                 end;
  159.                 theTarget.Container.OverrideCursor := false;
  160.                 oBinder.Refresh();
  161.                 oBinder.Goto(oMain_Menu_1);
  162.                 oBinder.SetTransition(oVerticalComb, 30);
  163.             end;
  164.         
  165.     with
  166.         Enabled is true; Shown is true; 
  167.         X is 473; Y is 426; Width is 55; Height is 54;
  168.     end;
  169. end;
  170.  
  171.  
  172. object oArrow_Left_Yellow_Highlight_7_5 is cPictureHandler
  173. with
  174.     Duration is -1;
  175.     Supplier is oS2_ARYH_PIC;
  176.     Behavior is cDefaultBehavior
  177.     has
  178.         Offscreen(theTarget)
  179.             do
  180.                 theTarget.Show(false);
  181.             end;
  182.         
  183.         MouseEnter(theTarget, theX, theY)
  184.             do
  185.                 theTarget.Show(true);
  186.             end;
  187.         
  188.         MouseLeave(theTarget, theX, theY)
  189.             do
  190.                 theTarget.Show(false);
  191.             end;
  192.         
  193.         MouseDown(theTarget, theX, theY)
  194.             do
  195.                 theTarget.Show(false);
  196.                 oArrow_Left_Inverse_7_9.Show(true);
  197.                 -- Turn off the spining cursor, if there is one
  198.                 if oBinder.MouseSpin<>void then
  199.                     if oBinder.MouseSpin.IsRunning() then
  200.                         oBinder.MouseSpin.Stop();
  201.                     end;
  202.                     oBinder.MouseSpin := void;
  203.                 end;
  204.                 theTarget.Container.OverrideCursor := true;
  205.                 oBinder.MouseSpin := oHandSpin;
  206.                 if (oBinder.MouseSpin @ 1).Data=void then
  207.                     oBinder.MouseSpin.EachUp(Load);
  208.                 end;
  209.                 if not oBinder.MouseSpin.IsRunning() then
  210.                     oBinder.MouseSpin.Start();
  211.                 end;
  212.                 oBinder.Refresh();
  213.                 oClick_Sound__down__7_3.Run(true);
  214.             end;
  215.         
  216.         MouseUp(theTarget, theX, theY)
  217.             do
  218.                 theTarget.Show(true);
  219.                 oArrow_Left_Inverse_7_9.Show(false);
  220.                 -- Turn off the spining cursor, if there is one
  221.                 if oBinder.MouseSpin<>void then
  222.                     if oBinder.MouseSpin.IsRunning() then
  223.                         oBinder.MouseSpin.Stop();
  224.                     end;
  225.                     oBinder.MouseSpin := void;
  226.                 end;
  227.                 theTarget.Container.OverrideCursor := false;
  228.                 oBinder.Refresh();
  229.                 oClick_Sound__Up__7_2.Run(true);
  230.                 oBinder.Goto(oQuickTime_1_6);
  231.                 oBinder.SetTransition(oVerticalComb, 30);
  232.             end;
  233.         
  234.     with
  235.         Enabled is true; Shown is true; 
  236.         X is 377; Y is 426; Width is 60; Height is 54;
  237.     end;
  238. end;
  239.  
  240.  
  241. object oExit_Yellow_Highlight_7_6 is cPictureHandler
  242. with
  243.     Duration is -1;
  244.     Supplier is oS2_ETYH_PIC;
  245.     Behavior is cDefaultBehavior
  246.     has
  247.         Offscreen(theTarget)
  248.             do
  249.                 theTarget.Show(false);
  250.             end;
  251.         
  252.         MouseEnter(theTarget, theX, theY)
  253.             do
  254.                 theTarget.Show(true);
  255.             end;
  256.         
  257.         MouseLeave(theTarget, theX, theY)
  258.             do
  259.                 theTarget.Show(false);
  260.             end;
  261.         
  262.         MouseDown(theTarget, theX, theY)
  263.             do
  264.                 theTarget.Show(false);
  265.                 oExit_Inverse_7_11.Show(true);
  266.                 -- Turn off the spining cursor, if there is one
  267.                 if oBinder.MouseSpin<>void then
  268.                     if oBinder.MouseSpin.IsRunning() then
  269.                         oBinder.MouseSpin.Stop();
  270.                     end;
  271.                     oBinder.MouseSpin := void;
  272.                 end;
  273.                 theTarget.Container.OverrideCursor := true;
  274.                 oBinder.MouseSpin := oHandSpin;
  275.                 if (oBinder.MouseSpin @ 1).Data=void then
  276.                     oBinder.MouseSpin.EachUp(Load);
  277.                 end;
  278.                 if not oBinder.MouseSpin.IsRunning() then
  279.                     oBinder.MouseSpin.Start();
  280.                 end;
  281.                 oBinder.Refresh();
  282.                 oClick_Sound__down__7_3.Run(true);
  283.             end;
  284.         
  285.         MouseUp(theTarget, theX, theY)
  286.             do
  287.                 theTarget.Show(true);
  288.                 oExit_Inverse_7_11.Show(false);
  289.                 -- Turn off the spining cursor, if there is one
  290.                 if oBinder.MouseSpin<>void then
  291.                     if oBinder.MouseSpin.IsRunning() then
  292.                         oBinder.MouseSpin.Stop();
  293.                     end;
  294.                     oBinder.MouseSpin := void;
  295.                 end;
  296.                 theTarget.Container.OverrideCursor := false;
  297.                 oBinder.Refresh();
  298.                 oClick_Sound__Up__7_2.Run(true);
  299.                 oBinder.Quit();
  300.             end;
  301.         
  302.     with
  303.         Enabled is true; Shown is true; 
  304.         X is 528; Y is 426; Width is 111; Height is 54;
  305.     end;
  306. end;
  307.  
  308.  
  309. object oExplain_Yellow_Highlight_7_34 is cPictureHandler
  310. with
  311.     Duration is -1;
  312.     Supplier is oS2_EXYH_PIC;
  313.     Behavior is cDefaultBehavior
  314.     has
  315.         Offscreen(theTarget)
  316.             do
  317.                 theTarget.Show(false);
  318.             end;
  319.         
  320.         MouseEnter(theTarget, theX, theY)
  321.             do
  322.                 theTarget.Show(true);
  323.                 -- Turn off the spining cursor, if there is one
  324.                 if oBinder.MouseSpin<>void then
  325.                     if oBinder.MouseSpin.IsRunning() then
  326.                         oBinder.MouseSpin.Stop();
  327.                     end;
  328.                     oBinder.MouseSpin := void;
  329.                 end;
  330.                 theTarget.Container.OverrideCursor := true;
  331.                 if oQueryCursor=void then
  332.                     oQueryCursor.Load();
  333.                 end;
  334.                 oQueryCursor.Set();
  335.             end;
  336.         
  337.         MouseLeave(theTarget, theX, theY)
  338.             do
  339.                 theTarget.Show(false);
  340.                 -- Turn off the spining cursor, if there is one
  341.                 if oBinder.MouseSpin<>void then
  342.                     if oBinder.MouseSpin.IsRunning() then
  343.                         oBinder.MouseSpin.Stop();
  344.                     end;
  345.                     oBinder.MouseSpin := void;
  346.                 end;
  347.                 theTarget.Container.OverrideCursor := false;
  348.             end;
  349.         
  350.         MouseDown(theTarget, theX, theY)
  351.             do
  352.                 theTarget.Show(false);
  353.                 oExplain_Inverse_7_12.Show(true);
  354.                 oBinder.Refresh();
  355.                 oClick_Sound__down__7_3.Run(true);
  356.                 oQT_HLP2_PIC_7_35.Show(not oQT_HLP2_PIC_7_35.IsShown());
  357.                 oBinder.StopAll();
  358.                 oQT_ARW1_PIC_7_23.Enable(not oQT_ARW1_PIC_7_23.IsEnabled());
  359.                 oQT_ARW2_PIC_7_24.Enable(not oQT_ARW2_PIC_7_24.IsEnabled());
  360.                 oQT_ARW3_PIC_7_25.Enable(not oQT_ARW3_PIC_7_25.IsEnabled());
  361.                 oQT_ARW4_PIC_7_26.Enable(not oQT_ARW4_PIC_7_26.IsEnabled());
  362.                 oQT_MOTO_MOV_7_27.Enable(not oQT_MOTO_MOV_7_27.IsEnabled());
  363.             end;
  364.         
  365.         MouseUp(theTarget, theX, theY)
  366.             do
  367.                 theTarget.Show(true);
  368.                 oExplain_Inverse_7_12.Show(false);
  369.                 oBinder.Refresh();
  370.                 oClick_Sound__Up__7_2.Run(true);
  371.             end;
  372.         
  373.     with
  374.         Enabled is true; Shown is true; 
  375.         X is 289; Y is 427; Width is 87; Height is 53;
  376.     end;
  377. end;
  378.  
  379.  
  380. object oMenu_Yellow_Highlight_7_8 is cPictureHandler
  381. with
  382.     Duration is -1;
  383.     Supplier is oS2_MNUYH_PIC;
  384.     Behavior is cDefaultBehavior
  385.     has
  386.         Offscreen(theTarget)
  387.             do
  388.                 theTarget.Show(false);
  389.             end;
  390.         
  391.         MouseEnter(theTarget, theX, theY)
  392.             do
  393.                 theTarget.Show(true);
  394.             end;
  395.         
  396.         MouseLeave(theTarget, theX, theY)
  397.             do
  398.                 theTarget.Show(false);
  399.             end;
  400.         
  401.         MouseDown(theTarget, theX, theY)
  402.             do
  403.                 theTarget.Show(false);
  404.                 oMenu_Inverse_7_13.Show(true);
  405.                 -- Turn off the spining cursor, if there is one
  406.                 if oBinder.MouseSpin<>void then
  407.                     if oBinder.MouseSpin.IsRunning() then
  408.                         oBinder.MouseSpin.Stop();
  409.                     end;
  410.                     oBinder.MouseSpin := void;
  411.                 end;
  412.                 theTarget.Container.OverrideCursor := true;
  413.                 oBinder.MouseSpin := oHandSpin;
  414.                 if (oBinder.MouseSpin @ 1).Data=void then
  415.                     oBinder.MouseSpin.EachUp(Load);
  416.                 end;
  417.                 if not oBinder.MouseSpin.IsRunning() then
  418.                     oBinder.MouseSpin.Start();
  419.                 end;
  420.                 oBinder.Refresh();
  421.                 oClick_Sound__down__7_3.Run(true);
  422.             end;
  423.         
  424.         MouseUp(theTarget, theX, theY)
  425.             do
  426.                 theTarget.Show(true);
  427.                 oMenu_Inverse_7_13.Show(false);
  428.                 -- Turn off the spining cursor, if there is one
  429.                 if oBinder.MouseSpin<>void then
  430.                     if oBinder.MouseSpin.IsRunning() then
  431.                         oBinder.MouseSpin.Stop();
  432.                     end;
  433.                     oBinder.MouseSpin := void;
  434.                 end;
  435.                 theTarget.Container.OverrideCursor := false;
  436.                 oBinder.Refresh();
  437.                 oClick_Sound__Up__7_2.Run(true);
  438.                 oBinder.Goto(oMain_Menu_1);
  439.                 oBinder.SetTransition(oVerticalComb, 30);
  440.             end;
  441.         
  442.     with
  443.         Enabled is true; Shown is true; 
  444.         X is 163; Y is 427; Width is 126; Height is 53;
  445.     end;
  446. end;
  447.  
  448.  
  449. object oArrow_Left_Inverse_7_9 is cPictureHandler
  450. with
  451.     Duration is -1;
  452.     Supplier is oS2_ALI_PIC;
  453.     Behavior is cDefaultBehavior
  454.     has
  455.         Offscreen(theTarget)
  456.             do
  457.                 theTarget.Show(false);
  458.                 theTarget.Enable(false);
  459.             end;
  460.         
  461.     with
  462.         Enabled is true; Shown is true; 
  463.         X is 381; Y is 441; Width is 51; Height is 40;
  464.     end;
  465. end;
  466.  
  467.  
  468. object oArrow_Right_Inverse_7_10 is cPictureHandler
  469. with
  470.     Duration is -1;
  471.     Supplier is oS2_ARI_PIC;
  472.     Behavior is cDefaultBehavior
  473.     has
  474.         Offscreen(theTarget)
  475.             do
  476.                 theTarget.Show(false);
  477.                 theTarget.Enable(false);
  478.             end;
  479.         
  480.     with
  481.         Enabled is true; Shown is true; 
  482.         X is 477; Y is 438; Width is 50; Height is 42;
  483.     end;
  484. end;
  485.  
  486.  
  487. object oExit_Inverse_7_11 is cPictureHandler
  488. with
  489.     Duration is -1;
  490.     Supplier is oS2_ETI_PIC;
  491.     Behavior is cDefaultBehavior
  492.     has
  493.         Offscreen(theTarget)
  494.             do
  495.                 theTarget.Show(false);
  496.                 theTarget.Enable(false);
  497.             end;
  498.         
  499.     with
  500.         Enabled is true; Shown is true; 
  501.         X is 528; Y is 439; Width is 112; Height is 42;
  502.     end;
  503. end;
  504.  
  505.  
  506. object oExplain_Inverse_7_12 is cPictureHandler
  507. with
  508.     Duration is -1;
  509.     Supplier is oS2_EXI_PIC;
  510.     Behavior is cDefaultBehavior
  511.     has
  512.         Offscreen(theTarget)
  513.             do
  514.                 theTarget.Show(false);
  515.                 theTarget.Enable(false);
  516.             end;
  517.         
  518.     with
  519.         Enabled is true; Shown is true; 
  520.         X is 291; Y is 438; Width is 87; Height is 43;
  521.     end;
  522. end;
  523.  
  524.  
  525. object oMenu_Inverse_7_13 is cPictureHandler
  526. with
  527.     Duration is -1;
  528.     Supplier is oS2_MNUI_PIC;
  529.     Behavior is cDefaultBehavior
  530.     has
  531.         Offscreen(theTarget)
  532.             do
  533.                 theTarget.Show(false);
  534.                 theTarget.Enable(false);
  535.             end;
  536.         
  537.     with
  538.         Enabled is true; Shown is true; 
  539.         X is 167; Y is 438; Width is 123; Height is 43;
  540.     end;
  541. end;
  542.  
  543.  
  544. object oQT_ARW1_PIC_7_23 is cPictureHandler
  545. with
  546.     Duration is -1;
  547.     Supplier is oQT_ARW1_PIC;
  548.     Behavior is cDefaultBehavior
  549.     has
  550.         MouseEnter(theTarget, theX, theY)
  551.             do
  552.                 theTarget.Show(false);
  553.             end;
  554.         
  555.         MouseLeave(theTarget, theX, theY)
  556.             do
  557.                 theTarget.Show(true);
  558.             end;
  559.         
  560.         MouseDown(theTarget, theX, theY)
  561.             do
  562.                 oClick_Sound__down__7_3.Run(true);
  563.                 if oQT_MOTO_MOV_7_27.GetTime() = 0 then 
  564.                     oQT_MOTO_MOV_7_27.GotoEnd();
  565.                 else
  566.                     oQT_MOTO_MOV_7_27.StepBy(-1);
  567.                 End;
  568.             end;
  569.         
  570.     with
  571.         Enabled is true; Shown is true; 
  572.         X is 314; Y is 282; Width is 31; Height is 34;
  573.     end;
  574. end;
  575.  
  576.  
  577. object oQT_ARW2_PIC_7_24 is cPictureHandler
  578. with
  579.     Duration is -1;
  580.     Supplier is oQT_ARW2_PIC;
  581.     Behavior is cDefaultBehavior
  582.     has
  583.         MouseEnter(theTarget, theX, theY)
  584.             do
  585.                 theTarget.Show(false);
  586.             end;
  587.         
  588.         MouseLeave(theTarget, theX, theY)
  589.             do
  590.                 theTarget.Show(true);
  591.             end;
  592.         
  593.         MouseDown(theTarget, theX, theY)
  594.             do
  595.                 oClick_Sound__down__7_3.Run(true);
  596.                 oQT_MOTO_MOV_7_27.StepBy(1);
  597.                 if oQT_MOTO_MOV_7_27.GetTime() = oQT_MOTO_MOV_7_27.GetDuration() then
  598.                     oQT_MOTO_MOV_7_27.GotoBeginning();
  599.                 End;
  600.             end;
  601.         
  602.     with
  603.         Enabled is true; Shown is true; 
  604.         X is 394; Y is 282; Width is 31; Height is 34;
  605.     end;
  606. end;
  607.  
  608.  
  609. object oQT_ARW3_PIC_7_25 is cPictureHandler
  610. with
  611.     Duration is -1;
  612.     Supplier is oQT_ARW3_PIC;
  613.     Behavior is cDefaultBehavior
  614.     has
  615.         MouseEnter(theTarget, theX, theY)
  616.             do
  617.                 theTarget.Show(false);
  618.             end;
  619.         
  620.         MouseLeave(theTarget, theX, theY)
  621.             do
  622.                 theTarget.Show(true);
  623.             end;
  624.         
  625.         MouseDown(theTarget, theX, theY)
  626.             do
  627.                 oClick_Sound__down__7_3.Run(true);
  628.                 if oQT_MOTO_MOV_7_27.GetTime() = 0 then 
  629.                     oQT_MOTO_MOV_7_27.GotoEnd();
  630.                 else
  631.                     oQT_MOTO_MOV_7_27.StepBy(-10);
  632.                 End;
  633.             end;
  634.         
  635.     with
  636.         Enabled is true; Shown is true; 
  637.         X is 514; Y is 283; Width is 32; Height is 33;
  638.     end;
  639. end;
  640.  
  641.  
  642. object oQT_ARW4_PIC_7_26 is cPictureHandler
  643. with
  644.     Duration is -1;
  645.     Supplier is oQT_ARW4_PIC;
  646.     Behavior is cDefaultBehavior
  647.     has
  648.         MouseEnter(theTarget, theX, theY)
  649.             do
  650.                 theTarget.Show(false);
  651.             end;
  652.         
  653.         MouseLeave(theTarget, theX, theY)
  654.             do
  655.                 theTarget.Show(true);
  656.             end;
  657.         
  658.         MouseDown(theTarget, theX, theY)
  659.             do
  660.                 oClick_Sound__down__7_3.Run(true);
  661.                 oQT_MOTO_MOV_7_27.StepBy(10);
  662.                 if oQT_MOTO_MOV_7_27.GetTime() = oQT_MOTO_MOV_7_27.GetDuration() then
  663.                     oQT_MOTO_MOV_7_27.GotoBeginning();
  664.                 End;
  665.             end;
  666.         
  667.     with
  668.         Enabled is true; Shown is true; 
  669.         X is 595; Y is 283; Width is 30; Height is 33;
  670.     end;
  671. end;
  672.  
  673.  
  674. object oQT_MOTO_MOV_7_27 is cMovieControllerHandler
  675. with
  676.     Supplier is oQT_MOTO_MOV;
  677.     Behavior is cDefaultBehavior
  678.     has
  679.     with
  680.         Enabled is true; Shown is true; 
  681.         X is 312; Y is 22; Width is 320; Height is 240;
  682.     end;
  683. end;
  684.  
  685.  
  686. object oQT_HLP2_PIC_7_35 is cPictureHandler
  687. with
  688.     Duration is -1;
  689.     Supplier is oQT_HLP2_PIC;
  690.     Behavior is cDefaultBehavior
  691.     has
  692.     with
  693.         Enabled is false; Shown is false; 
  694.         X is 168; Y is 0; Width is 472; Height is 425;
  695.     end;
  696. end;
  697.  
  698.